home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / FAN0.L2 < prev    next >
Text File  |  1996-04-01  |  4KB  |  123 lines

  1. name Fanuc 0T
  2.  
  3. % 00
  4. O >4
  5. N >3
  6. G >2
  7. X ->3.>4
  8. Z ->3.>4
  9. D 2
  10. I ->3.>4
  11. K ->3.>4
  12. U ->3.>4
  13. W ->3.>4
  14. P ->3.>4
  15. A 60 P
  16. Q ->3.>4
  17. q >4 Q
  18. R ->3.>4
  19. F >3.>6
  20. T 2
  21. t 2
  22. S >4
  23. M >2
  24.  
  25. ModalGs 0 1 2 3 73 76 80 81 82 83 84 85  # List of g codes that are modal    
  26.  
  27. First#? N                             # Y or N  'Output 1st sequence no.  
  28. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  29. Comment ( )                           # Begin End comment char.           
  30.  
  31. HCode Z                               # X or X U  'Horizontal char.       
  32. VCode X                               # Y or Y V  'Vertical char.         
  33. FeedCode F                            # Feed rate char.                   
  34.  
  35. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  36. Coolant 8 9 7                         # On, Off & Mist m codes            
  37. SpeedType G 97 96                     # CSS and RPM g codes               
  38. FeedType G 95 94                      # IPR & IPM g codes                 
  39. Dcomp 41 42 40                        # Left, Right & Cancel m codes      
  40.  
  41. ByDiameter? Y                         # Y or N  'Output X val. by diameter
  42. RevSigns X I
  43. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  44. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  45. Inch/MM 20 21                         # Inch & Metric g codes             
  46.  
  47. CtrCode K I                           # I J or R or I J K L               
  48.  
  49. Feed G1                               # Linear move                       
  50. Rapid G0                              # Rapid positioning word            
  51. Cw G3                                 # Circular move clockwise           
  52. Ccw G2                                # Circular move counter clockwise   
  53.  
  54. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  55.  
  56. Drill                                 # Drilling canned/manual cycle      
  57. G74 R[Depth]
  58. G74 Z[Depth] F[FRate]
  59. end
  60.  
  61. Peck                                  # Pecking canned/manual cycle       
  62. G74 R[Depth]
  63. G74 Z[H] Q[SBite] F[FRate]
  64. end
  65.  
  66. Tap                                   # Tapping canned/manual cycle       
  67. G84 Z[H] F[FRate]
  68. end cancel
  69.  
  70. Ream                                  # Reaming canned/manual cycle       
  71. G85 Z[H] F[FRate]
  72. end cancel
  73.  
  74. Bore                                  # Boring canned/manual cycle        
  75. G74 R0
  76. G74 Z[H] R[SClear] F[FRate]
  77. end
  78.  
  79. AutoThread                            # Automatic thread canned cycle     
  80. G76 A[TParams] Q[VBite] R0
  81. G76 X[V] Z[H] R[StartAng] P[Depth] q[Peck1] F[Frate]
  82. end
  83.  
  84. Cancel                                # Cancel a canned/manual cycle      
  85. G80
  86. end
  87.  
  88. StartCode                             # Start of the program              
  89. %0
  90. O[Program#]
  91. end
  92.  
  93. 1stToolChange                         # First tool change                 
  94. T[Tool]
  95. G[FeedType] G[SpeedType] S[Speed] M[Direct]
  96. G0 X[V] Z[H] T[Tool] t[Dcomp] M[Cool]
  97. End
  98.  
  99. Infeed                                # Enable cutter comp                
  100. G1 G[Side] X[V] Z[H] D[Dcomp] F[FRate]
  101. end
  102.  
  103. Outfeed                               # Disable cutter comp               
  104. G1 X[V] Z[H] F[FRate]
  105. end
  106.  
  107. ToolChange                            # Secondary tool changes            
  108. G0 Z[ToolH] T[Tool] t0 M9
  109. M1
  110. T[Tool]
  111. G[FeedType] G[SpeedType] S[Speed] M[Direct]
  112. G0 X[V] Z[H] T[Tool] t[Dcomp] M[Cool]
  113. End
  114.  
  115. EndCode                               # End of the program                
  116. G0 X[ToolH] Z[ToolH] T[Tool] t0 M9
  117. M5
  118. M30
  119. %0
  120. End
  121.  
  122. Replace "t" with ""
  123.